home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
PASSRC.ZIP
/
PASCOMS.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-04
|
576b
|
27 lines
program Lots_Of_Comments;
begin { This is the start of the main program }
(* This is a comment that is ignored by the Pascal compiler *)
{ This is also ignored }
Writeln('I am in Pascal school, Dad'); (* Comment *)
Writeln('All students are always broke'); {Comment}
(*
Writeln('Send money');
Writeln('Send money');
*)
Writeln('I am really getting hungry');
end. (* This is the end of the main program *)
{ Result of execution
I am in Pascal school, Dad
All students are always broke
I am really getting hungry
}